home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 049a / slhea201.zip / REPLY.BAT < prev    next >
DOS Batch File  |  1991-06-09  |  564b  |  22 lines

  1. @echo off
  2. echo     ┌────────────────────────────┐
  3. echo     │                            │
  4. echo     │ Reply to a message (SLMR)  │
  5. echo     │                            │
  6. echo     └────────────────────────────┘
  7.  
  8. rem replace C:\SLMR\HEADER by the path of your own header file !
  9. rem and replace "EDIT" by your favorite text editor
  10.  
  11. if exist reply.msg goto nomag
  12. if not exist orig.msg goto else
  13. c:\slmr\makehead C:\SLMR\HEADER <orig.msg >reply.msg
  14.  goto nomag
  15. :else
  16. c:\slmr\makehead D:\SLMR\HEADER >reply.msg
  17. :nomag
  18.  
  19. EDIT reply.msg orig.msg
  20.  
  21. exit
  22.